51e632aa18ecd248fdad371f82f7cb315477a042,gdx/src/com/badlogic/gdx/scenes/scene2d/ui/TextField.java,TextField,draw,#SpriteBatch#number#,230

Before Change


			blink();
			if (cursorOn) {
				cursorPatch.draw(batch, x + background.getLeftWidth() + glyphPositions.get(cursor) + renderOffset - 1, y + textY
					- textBounds.height - font.getDescent() / 2, cursorPatch.getTotalWidth(), textBounds.height);
			}
		}
	}

After Change


			blink();
			if (cursorOn) {
				cursorPatch.draw(batch, x + background.getLeftWidth() + glyphPositions.get(cursor) + renderOffset - 1, y + textY
					- textBounds.height - font.getDescent(), cursorPatch.getTotalWidth(), textBounds.height + font.getDescent() / 2);
			}
		}
	}